home *** CD-ROM | disk | FTP | other *** search
/ Collection of Internet / Collection of Internet.iso / msdos / lynx / source / doslynx / src / theapvi2.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1994-10-25  |  707 b   |  25 lines

  1. //    Copyright (c) 1993, University of Kansas, All Rights Reserved
  2. //
  3. //    Class:        THeapView
  4. //    Include File:    THeapView.H
  5. //    Purpose:    Display amount of remaining heap memory
  6. //    Remarks/Portability/Dependencies/Restrictions:
  7. //    Revision History:
  8. //        12-13-93    created
  9. //        02-10-94    Split all members into seperate files.
  10. #include"theapview.h"
  11.  
  12. THeapView::THeapView(TRect& TR_dimensions) : TView(TR_dimensions)    {
  13. //    Purpose:    Constructor
  14. //    Arguments:    TR_dimensions    reference to the dimensions of the
  15. //                    view.
  16. //    Return Value:    none
  17. //    Remarks/Portability/Dependencies/Restrictions:
  18. //    Revision History:
  19. //        12-13-93    created
  20.  
  21.     PastMem = 0;
  22.     PresMem = GetHeapSize();
  23.     B_tolduser = False;
  24. }
  25.